home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / RotateDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.5 KB  |  58 lines

  1. #if !defined(AFX_ROTATEDLG_H__D4B79152_7A7E_11D1_B541_00AA00A410FC__INCLUDED_)
  2. #define AFX_ROTATEDLG_H__D4B79152_7A7E_11D1_B541_00AA00A410FC__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // RotateDlg.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CRotateDlg dialog
  12.  
  13. class CRotateDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CRotateDlg(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CRotateDlg)
  21.     enum { IDD = IDD_ROTATE };
  22.     CSpinButtonCtrl    m_wndSpin3;
  23.     CSpinButtonCtrl    m_wndSpin2;
  24.     CSpinButtonCtrl    m_wndSpin1;
  25.     CString    m_strX;
  26.     CString    m_strY;
  27.     CString    m_strZ;
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CRotateDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.     void ApplyNoPaint();
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CRotateDlg)
  44.     virtual void OnOK();
  45.     afx_msg void OnApply();
  46.     virtual BOOL OnInitDialog();
  47.     afx_msg void OnDeltaposSpin1(NMHDR* pNMHDR, LRESULT* pResult);
  48.     afx_msg void OnDeltaposSpin2(NMHDR* pNMHDR, LRESULT* pResult);
  49.     afx_msg void OnDeltaposSpin3(NMHDR* pNMHDR, LRESULT* pResult);
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_ROTATEDLG_H__D4B79152_7A7E_11D1_B541_00AA00A410FC__INCLUDED_)
  58.